home *** CD-ROM | disk | FTP | other *** search
/ Bible Heaven / Bible Heaven.iso / inform / revival2 / l5.doc < prev    next >
Text File  |  1985-08-19  |  3KB  |  84 lines

  1. Command    LIST
  2. ----------------
  3.  
  4.  Purpose:  To display the contents of an ASCII file, line by
  5.        line, with operator positioning commands.
  6.  
  7.  Format:   L5 [d:][path]filename[.ext]
  8.  
  9.  Remarks:  An ASCII file of any    size may be listed.
  10.  
  11.     On the COMMAND line, enter a letter or control key:-
  12.  
  13.     Letter(s)    Control key    Function
  14.     -----------    ------------    ------------------------
  15.             Enter        continue to next page
  16.     Q, X        ESCape        terminate and exit to DOS
  17.     T        HOME        restart    from first block (top)
  18.     B        END        skip to    end of file (bottom)
  19.     D         PgDn        scroll down one    page
  20.     U        PgUp        scroll up one page
  21.     H or ?        F1        list commands (HELP)
  22.     L        left arrow    scroll left 20 columns
  23.     R        right arrow    scroll right 20    columns
  24.     P        up arrow    up one (previous) line
  25.     N        down arrow    down one (next)    line
  26.  
  27.     /text                find 'text'
  28.     A        F3        find next occurance of 'text'
  29.  
  30.             ctl-HOME    restart from CURRENT block
  31.             ctl-PgUp    restart from first block (TOP)
  32.             ctl-PgDn    skip to end of file (BOTTOM)
  33.             ctl-left-arrow    reset scroll to column 1
  34.  
  35.             F1        Help
  36.             F3        Find next
  37.             F10        Exit
  38.  
  39.  Restrictions:
  40.     All positioning    is relative to the current block in
  41.     storage. The size of the block depends on the amount of
  42.     memory available, up to    64K.
  43.  
  44.     The maximum record length currently allowed is 255.
  45.  
  46.     Logical    records    (ending    in LF and/or CR) are placed
  47.     into the DOS screen buffer - mono or color display.
  48.  
  49.     PC-DOS Version 2.0 or later is required.
  50.  
  51.     ANSI.SYS is NOT required.
  52.  
  53.  Scanning for text:
  54.     To scan for a character string, type a slash (/)
  55.     followed by one or more (up to 32) characters. The
  56.     scan text, but not the slash, is displayed on the
  57.     command line. Only the current block is scanned.
  58.  
  59.     If the text is found, the line containing it is displayed
  60.     as a blinking line.
  61.  
  62.     If the text is NOT found, an error message is displayed
  63.     and the display remains unchanged. To scan the next block,
  64.     "page" into it with PgDn or Down, and use F3 to re-scan.
  65.  
  66.  Screen attributes:
  67.     There are three classes of attributes used. One for
  68.     normal display lines - lines 2 to 24, another for
  69.     special lines - lines 1 and 25, and a third for the
  70.     background color.
  71.  
  72.     These attributes may be changed by using DEBUG:
  73.  
  74.      at offset 11C = 09    ;special lines, hi-lighted or lt.blue
  75.      at offset 11D = 02    ;normal lines, green
  76.      at offset 11E = 00    ;background, black
  77.  
  78.     If these values don't match, you have a different version.
  79.     ----------------------------------------------------------
  80.  
  81.     Written    by Vernon Buerg, April,    1984, for the IBM PC
  82.     using DOS 2.0 and is supplied for public domain    use.
  83.     Not for sale or hire.
  84.